.btn-font-size:hover,
.btn-contrast:hover,
.btn-accessibility:hover {
    text-decoration: underline;
}

.section-divider {
    border-top: 2px solid #000000;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.services-section {
    padding: 4rem 0;
}

.services-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.process-subtitle {
    color: #666;
}

.services-description {
    color: #555;
    line-height: 1.6;
}

.services-image {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.service-process-line {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background-color: #d84f01;
    z-index: 1;
}
.service-bg-process {
    width: 70px;
    height: 70px;
    background-color: #d84f01;
    z-index: 2;
}

.news-article > .btn-selected-gallery {
    background-color: #007c7d;
    color: white;
}

@media (max-width: 991px) {
    .service-process-line {
        display: none !important;
    }
}
/* end service */
.detailpartnersnutrifood-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.btn-green-download {
    background-color: #058737;
}
.btn-green-download:hover {
    background-color: #25ad55;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.check-icon {
    width: 25px;
    height: 25px;
    background-color: rgb(25, 135, 84);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.check-icon::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.card-custom {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.counter-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
}
.counter-card h2 {
    font-weight: 700;
    color: #009688; /* hijau toska */
}
.counter-sub {
    font-size: 1.2rem;
    color: #555;
}
.counter-item strong {
    color: #009688;
    font-size: 1.2rem;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 10px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
 min-height: 500px; /* tinggi minimum, akan otomatis memanjang jika teks panjang */
    height: auto;      /* hapus fixed height */
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    flex-shrink: 0;
    overflow: hidden; /* agar gambar tidak keluar lingkaran */
    border-radius: 50%; /* lingkaran */
    border: 2px solid #ddd; /* opsional: kasih border */
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* biar tidak gepeng */
    display: block;
}

.story-info h5 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.story-role {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.story-content {
    color: #555;
    line-height: 1.6;
    /* font-style: italic; */
    flex-grow: 1;
    display: flex;
    align-items: start;
}

.story-rating {
    margin-top: 1rem;
    text-align: center;
}

.story-rating .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.story-program {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Owl Carousel Custom Styles */
.owl-carousel {
    position: relative; /* penting */
}

.owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button {
    pointer-events: all;
    background: #fff !important;
    color: #333 !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 1.2rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease !important;
}

/* geser tombol keluar area card */
.owl-nav .owl-prev {
    position: absolute;
    left: -25px; /* makin besar, makin keluar */
}

.owl-nav .owl-next {
    position: absolute;
    right: -25px;
}

.owl-nav button:hover {
    background: #0b9b9b !important;
    transform: scale(1.15);
    color: #000 !important;
}

.owl-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(128, 126, 126, 0.3);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background: rgb(43, 42, 42);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .story-card {
        height: auto;
        min-height: 350px;
    }
}

/* Contact page */
.card-contact {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.icon-box {
    width: 40px;
    height: 40px;
    background-color: #eff0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 12px;
    color: #007c7d;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}
.social-icon.instagram {
    background-color: #e4405f;
}
.social-icon.linkedin {
    background-color: #0a66c2;
}
.social-icon.facebook {
    background-color: #1877f2;
}

/* Career page */
.job-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 15px;
}
.job-tag {
    background-color: #e8f7f0;
    color: #007c7d;
    font-weight: 600;
    border-radius: 10px;
    padding: 3px 10px;
    font-size: 0.8rem;
}
.job-card ol {
    color: #555;
}
.no-jobs {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.btn-career {
    background-color: #007c7d;
    color: #fff;
}
.btn-career:hover {
    background-color: #1aa1a1;
    color: #fff;
}
/* Scrollable Project-Based Section */
.project-scroll {
    max-height: 580px; /* ubah sesuai kebutuhan */
    overflow-y: auto;
    padding-right: 10px;
}

/* Tambahkan scrollbar yang halus dan elegan */
.project-scroll::-webkit-scrollbar {
    width: 8px;
}
.project-scroll::-webkit-scrollbar-thumb {
    background-color: #888a8a;
    border-radius: 10px;
}
.project-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #5d5e5e;
}
.section-box-career {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    max-width: 100%;
}
.section-box-career h5,
h6 {
    font-weight: 600;
}
.text-green-career {
    color: #0d9f7c;
}
.faq-box-career {
    background-color: #eaf9f5;
    border-radius: 10px;
    padding: 1.5rem;
}
.btn-register-career {
    background-color: #007c7d;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: 0.3s;
}
.btn-register-career:hover {
    background-color: #1aa1a1;
    color: #fff;
}
.list-check-career li::before {
    content: "✔ ";
    color: #0d9f7c;
    font-weight: bold;
}
.list-step-career li::before {
    content: "● ";
    color: #0d9f7c;
    font-weight: bold;
}

/* Detail Article */
.link-article-hover:hover {
    text-decoration: underline;
}

.article-content p {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #000000;
}
.ql-align-center {
    text-align: center;
}
.ql-align-right {
    text-align: right;
}
.ql-align-justify {
    text-align: justify;
}
.btn-circle-share {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-circle-share i {
    font-size: 14px;
    line-height: 1;
}
.btn-copy-link i {
    color: rgb(87, 85, 85);
}
.btn-copy-link i:hover {
    color: #fff;
}
.btn-copy-link:hover {
    background-color: rgb(87, 85, 85);
}
.btn-linkedin {
    border: 1.8px solid #0a66c2;
    color: #0a66c2;
}

.btn-linkedin:hover {
    background-color: #0a66c2;
    color: #fff;
}
.breadcrumb-item + .breadcrumb-item::before {
    font-family: "bootstrap-icons";
    content: "\F285";
    font-size: 0.65rem;
    vertical-align: middle;
    color: #0f1011;
    padding-right: 0.75rem;
    padding-left: 0.25rem;
}

.breadcrumb-item a {
    text-decoration: underline !important;
    color: #0d6efd;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #0a58ca;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item.active {
    color: #212529;
}

.job-list-content.custom-list-career ul,
.job-list-content.custom-list-career ol {
    padding-left: 0;
    margin-left: 1rem;
    list-style-position: outside;
}

.job-list-content.custom-list-career li {
    margin-bottom: 0.2rem;
    line-height: 1.5;
    color: #1a1919;
}

@media (max-width: 768px) {
    .job-list-content.custom-list-career ul,
    .job-list-content.custom-list-career ol {
        margin-left: 1.1rem;
    }
}

/* End Detail Article */

/* Styling font kondensasi tebal mirip di gambar */
.heading-condensed {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Warna teks gelap untuk Sub-judul */
.summary {
    color: #222222;
    font-size: 40px;
    margin-bottom: 1rem;
}

.section-title-accessibility {
    color: #222222;

    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Warna link contact us */
.custom-link-accessibility {
    color: #007c7d;
    text-decoration: none;
}
.custom-link-accessibility:hover {
    color: #069191;
    text-decoration: underline;
}

.green-divider {
    border-top: 2px solid #007c7d;
    opacity: 1;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
}

.accessibility-list {
    padding-left: 0 !important;
    margin-left: 1rem;
    margin-bottom: 1rem;
    list-style-position: outside;
}

.accessibility-list li {
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
    margin-left: 1rem;
    color: #1a1919;
}
